================================
Lasso Connector for J2EE
================================

To install Lasso Connector for J2EE on a Java web server:   

1 Stop Lasso Service using the stopLassoService.command file in the Lasso Professional 8 "Tools" folder.

2 Move the LassoConnectorForJ2EE.jar and optional commons-fileupload.jar file into the WEB-INF/lib/ folder inside your web application directory.  

3 If you are adding Lasso support to an existing web application, copy the settings contained within the <web-app> tags in the example web.xml file into the same location in the existing web.xml file. When deploying an entirely new web application, simply move the included example deployment descriptor into WEB-INF/ directory of your web app. 

4 To configure the server to process alternate file extensions with Lasso, insert additional <servlet-mapping> tags in the web.xml file, providing your custom file extension in the url-pattern attribute:

    <servlet-mapping servlet-name=lasso-connector url-pattern=*.myExt />

or:

    <servlet-mapping>
	<servlet-name>lasso-connector</servlet-name>
	<url-pattern>*.myExt</url-pattern>
    </servlet-mapping>



For further info, consult Lasso Pro 8 Setup Guide: Extended Configuration.


